Name Property (AddressList Object) 

The Name property returns the name of this AddressList object as a string. Read-only.

Syntax

objAddressList.Name

Data Type

String

Remarks

The Name property corresponds to the MAPI property PR_DISPLAY_NAME for the address book container represented by the AddressList object.

The Name property is the default property of an AddressList object, meaning that AddressList is syntactically equivalent to AddressList.Name in Visual Basic code.

Example

Dim objAddressList As Object ' assume valid address list object

MsgBox "Address book container name = " & objAddressList.Name